Parenthesized forms
A parenthesized form is an optional condition list enclosed in
parentheses:
parenth_form: "(" [condition_list] ")"
A parenthesized condition list yields whatever that condition list
yields.
An empty pair of parentheses yields an empty tuple object. Since
tuples are immutable, the rules for literals apply here.
emptytuple
(Note that tuples are not formed by the parentheses, but rather by use
of the comma operator. The exception is the empty tuple, for which
parentheses are required — allowing unparenthesized ``nothing''
in expressions would cause ambiguities and allow common typos to
pass uncaught.)
tupledisplay